home *** CD-ROM | disk | FTP | other *** search
- Path: news.wwa.com!news
- From: arway@wwa.com (Ken Arway)
- Newsgroups: comp.lang.rexx,comp.os.os2.apps
- Subject: Re: epm menus with Rexx buildSubmenu
- Date: 9 Mar 1996 21:18:41 GMT
- Organization: WorldWide Access (tm) - Chicagoland Internet Services (http://www.wwa.com)
- Distribution: inet
- Message-ID: <4hssjh$7p9@kirin.wwa.com>
- References: <4hsjpb$2pg$1@mhadf.production.compuserve.com>
- Reply-To: arway@wwa.com
- NNTP-Posting-Host: pool5-017.wwa.com
- X-Newsreader: IBM NewsReader/2 v1.2.5
-
- In <4hsjpb$2pg$1@mhadf.production.compuserve.com>, Michael Miller <102261.206@CompuServe.COM> writes:
-
- >2) My new menu appears after (i.e. to the right of) the help
- >menu. How would I insert it before the help menu?
-
- Use the "deletemenu defaultmenu, 6, 0, 0" ("Help" is menu item #6)
- and "call readd_help_menu" construction. For example, my MYSTUFF.E
- has the following:
-
- definit
- universal defaultmenu, activemenu
- deletemenu defaultmenu, 6, 0, 0
- buildsubmenu defaultmenu, <blah, blah>
- buildmenuitem defaultmenu, <blah, blah>
- buildmenuitem defaultmenu, <blah, blah>
- buildmenuitem defaultmenu, <blah, blah>
- buildmenuitem defaultmenu, <blah, blah>
- buildmenuitem defaultmenu, <blah, blah>
- call readd_help_menu()
- call maybe_show_menu()
-
- I'm not positive, but I think that if you're using those in a
- PROFILE.ERX each line must be bracketed with quotes.
-
- So sayeth,
- Ken Arway
-
-